From: Paul Eggert Date: Thu, 14 Apr 2011 02:53:50 +0000 (-0700) Subject: * textprop.c (interval_insert_behind_hooks): Now static. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~4132^2~15 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=f7a554cadaa88d6f074a86341e6bfc90c9536b3a;p=emacs.git * textprop.c (interval_insert_behind_hooks): Now static. (interval_insert_in_front_hooks): Likewise. --- diff --git a/src/ChangeLog b/src/ChangeLog index 67b938c3268..9a03b5d9f82 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2011-04-14 Paul Eggert + * textprop.c (interval_insert_behind_hooks): Now static. + (interval_insert_in_front_hooks): Likewise. + * term.c: Make symbols static if they're not exported. (tty_turn_off_highlight, get_tty_terminal, max_frame_cols): (max_frame_lines, tty_set_terminal_modes): diff --git a/src/textprop.c b/src/textprop.c index b3bb064e8b8..e85b041891c 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -72,8 +72,8 @@ Lisp_Object Qfront_sticky, Qrear_nonsticky; /* verify_interval_modification saves insertion hooks here to be run later by report_interval_modification. */ -Lisp_Object interval_insert_behind_hooks; -Lisp_Object interval_insert_in_front_hooks; +static Lisp_Object interval_insert_behind_hooks; +static Lisp_Object interval_insert_in_front_hooks; static void text_read_only (Lisp_Object) NO_RETURN; INFUN (Fprevious_property_change, 3);